home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / EVISION1.ARJ / GETKEY.HPP < prev    next >
C/C++ Source or Header  |  1992-05-19  |  620b  |  21 lines

  1. #if !defined (GETKEY)                     // To prevent multiple declarations
  2. #define GETKEY
  3.  
  4. // ---- Header Files --------------------------------------------------------
  5.  
  6. #include <stdio.h>
  7.  
  8.  
  9. // ---- Prototypes ----------------------------------------------------------
  10.  
  11. int far getkey                                       // Get key from keyboard
  12.  
  13. ( int       filter,                           // Valid key code, or 0 for all
  14.   char huge *helptext=NULL          // Pointer to context sensitive help text
  15. ) ;
  16.  
  17.  
  18. // ---- End Header File -----------------------------------------------------
  19.  
  20. #endif
  21.